home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / Interfaces&Libraries / Universal / Interfaces / AIncludes / Packages.a < prev    next >
Encoding:
Text File  |  1998-02-12  |  1.4 KB  |  55 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        Packages.a
  3. ;
  4. ;    Contains:    Package Manager Interfaces.
  5. ;
  6. ;    Version:    Technology:    System 7.5
  7. ;                Release:    Universal Interfaces 3.1
  8. ;
  9. ;    Copyright:    © 1985-1993, 1995, 1997-1998 by Apple Computer, Inc., all rights reserved
  10. ;
  11. ;    Bugs?:        Please include the the file and version information (from above) with
  12. ;                the problem description.  Developers belonging to one of the Apple
  13. ;                developer programs can submit bug reports to:
  14. ;
  15. ;                    devsupport@apple.com
  16. ;
  17. ;
  18.     IF &TYPE('__PACKAGES__') = 'UNDEFINED' THEN
  19. __PACKAGES__ SET 1
  20.  
  21.     IF &TYPE('__MACTYPES__') = 'UNDEFINED' THEN
  22.     include 'MacTypes.a'
  23.     ENDIF
  24.  
  25.  
  26. listMgr                            EQU        0                    ; list manager 
  27. dskInit                            EQU        2                    ; Disk Initializaton 
  28. stdFile                            EQU        3                    ; Standard File 
  29. flPoint                            EQU        4                    ; Floating-Point Arithmetic 
  30. trFunc                            EQU        5                    ; Transcendental Functions 
  31. intUtil                            EQU        6                    ; International Utilities 
  32. bdConv                            EQU        7                    ; Binary/Decimal Conversion 
  33. editionMgr                        EQU        11                    ; Edition Manager 
  34. ;
  35. ; pascal void InitPack(short packID)
  36. ;
  37.     IF TARGET_OS_MAC ** TARGET_CPU_68K ** ¬ TARGET_RT_MAC_CFM THEN
  38.         _InitPack:    OPWORD    $A9E5
  39.     ELSEIF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
  40.         IMPORT_CFM_FUNCTION InitPack
  41.     ENDIF
  42.  
  43. ;
  44. ; pascal void InitAllPacks(void )
  45. ;
  46.     IF TARGET_OS_MAC ** TARGET_CPU_68K ** ¬ TARGET_RT_MAC_CFM THEN
  47.         _InitAllPacks:    OPWORD    $A9E6
  48.     ELSEIF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
  49.         IMPORT_CFM_FUNCTION InitAllPacks
  50.     ENDIF
  51.  
  52.  
  53.     ENDIF ; __PACKAGES__ 
  54.  
  55.